/* Awards Section */
.awards-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    padding: 40px 5%;
    background-color: #f4f4f4; /* Matches your body background */
    max-width: 1200px;
    margin: 0 auto;
}

.award-item {
    flex: 1;
    max-width: 500px;
    text-align: center;
}

.award-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.award-caption {
    margin-top: 15px;
    font-size: 13px;
    color: #333;
    font-family: Arial, sans-serif;
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .awards-container {
        gap: 15px;
        padding: 30px 4%;
    }

    .award-image {
        max-height: 350px;
    }

    .award-caption {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .awards-container {
        flex-direction: column;
        align-items: center;
        padding: 20px 3%;
    }

    .award-item {
        max-width: 100%;
        width: 100%;
    }

    .award-image {
        max-height: 300px;
    }

    .award-caption {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .awards-container {
        padding: 15px 2%;
    }

    .award-image {
        max-height: 250px;
    }

    .award-caption {
        font-size: 11px;
        margin-top: 10px;
    }
}
